home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************************************
- CSmartBartender: subclass of CBartender that adds some additional
- features. These are:
-
- • Currently, just knows how to enable and disable all menus
- with a single call.
-
- by Dan Podwall - you may do anything you please with this code except
- charge for it, with the exception of normal network download charges.
-
- *****************************************************************************/
-
- #define _H_CSmartBartender
-
- #include "CBartender.h"
- #include "defs.h"
-
- struct CSmartBartender : CBartender
- {
- virtual void ISmartBartender(Int16 MBARid);
-
- virtual void DisableAllMenus( void);
- virtual void EnableAllMenus( void);
-
- };